Complete Implementation of SQL Query Engine #55
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This Pull Request Includes:
1. CSV Parsing:
The core of this project integrates CSV parsing with a bespoke SQL query parser.
2. Query Options:
Implemented WHERE clauses with multiple conditions and a variety of comparison operators.
3. Join Operations:
The project supports INNER, LEFT, and RIGHT JOINs
4. Aggregation and Grouping:
Full functional GROUP BY clauses and aggregate functions.
5. Refined Data Selection:
Features like ORDER BY and LIMIT clauses have been added.
6. Error Handling:
Error Handling Methods Learnt and Added.
7. SQL Support:
Added DISTINCT, LIKE operators, and rudimentary support for INSERT and DELETE statements.
8. Command-Line Interface (CLI):
A user-friendly CLI is created.
9. Continuous Integration (CI):
Guaranteeing the integrity of our project, Continous Integration is an essential part.
Learnings
I believe this project made me improve my javascript skills by a lot. I got to dive deeper into how Database Management Systems actually work.